home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / lib / calc / help / overview < prev    next >
Text File  |  1995-07-17  |  7KB  |  124 lines

  1.             CALC - An arbitrary precision calculator.
  2.                 by David I. Bell
  3.  
  4.  
  5.     This is a calculator program with arbitrary precision arithmetic.
  6.     All numbers are represented as fractions with arbitrarily large
  7.     numerators and denominators which are always reduced to lowest terms.
  8.     Real or exponential format numbers can be input and are converted
  9.     to the equivalent fraction.  Hex, binary, or octal numbers can be
  10.     input by using numbers with leading '0x', '0b' or '0' characters.
  11.     Complex numbers can be input using a trailing 'i', as in '2+3i'.
  12.     Strings and characters are input by using single or double quotes.
  13.  
  14.     Commands are statements in a C-like language, where each input
  15.     line is treated as the body of a procedure.  Thus the command
  16.     line can contain variable declarations, expressions, labels,
  17.     conditional tests, and loops.  Assignments to any variable name
  18.     will automatically define that name as a global variable.  The
  19.     other important thing to know is that all non-assignment expressions
  20.     which are evaluated are automatically printed.  Thus, you can evaluate 
  21.     an expression's value by simply typing it in.
  22.  
  23.     Many useful built-in mathematical functions are available.  Use
  24.     the 'show builtins' command to list them.  You can also define
  25.     your own functions by using the 'define' keyword, followed by a
  26.     function declaration very similar to C.  Functions which only
  27.     need to return a simple expression can be defined using an
  28.     equals sign, as in the example 'define sc(a,b) = a^3 + b^3'.
  29.     Variables in functions can be defined as either 'global', 'local',
  30.     or 'static'.  Global variables are common to all functions and the
  31.     command line, whereas local variables are unique to each function
  32.     level, and are destroyed when the function returns.  Static variables
  33.     are scoped within single input files, or within functions, and are
  34.     never destroyed.  Variables are not typed at definition time, but
  35.     dynamically change as they are used.  So you must supply the correct
  36.     type of variable to those functions and operators which only work
  37.     for a subset of types.
  38.  
  39.     By default, arguments to functions are passed by value (even
  40.     matrices).  For speed, you can put an ampersand before any
  41.     variable argument in a function call, and that variable will be
  42.     passed by reference instead.  However, if the function changes
  43.     its argument, the variable will change.  Arguments to built-in
  44.     functions and object manipulation functions are always called
  45.     by reference.  If a user-defined function takes more arguments
  46.     than are passed, the undefined arguments have the null value.
  47.     The 'param' function returns function arguments by argument
  48.     number, and also returns the number of arguments passed.  Thus
  49.     functions can be written to handle an arbitrary number of
  50.     arguments.
  51.  
  52.     The mat statement is used to create a matrix.  It takes a
  53.     variable name, followed by the bounds of the matrix in square
  54.     brackets.  The lower bounds are zero by default, but colons can
  55.     be used to change them.  For example 'mat foo[3, 1:10]' defines
  56.     a two dimensional matrix, with the first index ranging from 0
  57.     to 3, and the second index ranging from 1 to 10.  The bounds of
  58.     a matrix can be an expression calculated at runtime.
  59.  
  60.     Lists of values are created using the 'list' function, and values can
  61.     be inserted or removed from either the front or the end of the list.
  62.     List elements can be indexed directly using double square brackets.
  63.  
  64.     The obj statement is used to create an object.  Objects are
  65.     user-defined values for which user-defined routines are
  66.     implicitly called to perform simple actions such as add,
  67.     multiply, compare, and print. Objects types are defined as in
  68.     the example 'obj complex {real, imag}', where 'complex' is the
  69.     name of the object type, and 'real' and 'imag' are element
  70.     names used to define the value of the object (very much like
  71.     structures).  Variables of an object type are created as in the
  72.     example 'obj complex x,y', where 'x' and 'y' are variables.
  73.     The elements of an object are referenced using a dot, as in the
  74.     example 'x.real'. All user-defined routines have names composed
  75.     of the object type and the action to perform separated by an
  76.     underscore, as in the example 'complex_add'.  The command 'show
  77.     objfuncs' lists all the definable routines.  Object routines
  78.     which accept two arguments should be prepared to handle cases
  79.     in which either one of the arguments is not of the expected
  80.     object type.
  81.  
  82.     These are the differences between the normal C operators and
  83.     the ones defined by the calculator.  The '/' operator divides
  84.     fractions, so that '7 / 2' evaluates to 7/2. The '//' operator
  85.     is an integer divide, so that '7 // 2' evaluates to 3.  The '^'
  86.     operator is a integral power function, so that 3^4 evaluates to
  87.     81.  Matrices of any dimension can be treated as a zero based
  88.     linear array using double square brackets, as in 'foo[[3]]'.
  89.     Matrices can be indexed by using commas between the indices, as
  90.     in foo[3,4].  Object and list elements can be referenced by
  91.     using double square brackets.
  92.  
  93.     The print statement is used to print values of expressions.
  94.     Separating values by a comma puts one space between the output
  95.     values, whereas separating values by a colon concatenates the
  96.     output values.  A trailing colon suppresses printing of the end
  97.     of line.  An example of printing is 'print \"The square of\",
  98.     x, \"is\", x^2\'.
  99.  
  100.     The 'config' function is used to modify certain parameters that
  101.     affect calculations or the display of values.  For example, the
  102.     output display mode can be set using 'config(\"mode\", type)',
  103.     where 'type' is one of 'frac', 'int', 'real', 'exp', 'hex',
  104.     'oct', or 'bin'.  The default output mode is real.  For the
  105.     integer, real, or exponential formats, a leading '~' indicates
  106.     that the number was truncated to the number of decimal places
  107.     specified by the default precision.  If the '~' does not
  108.     appear, then the displayed number is the exact value.
  109.  
  110.     The number of decimal places printed is set by using
  111.     'config(\"display\", n)'.  The default precision for
  112.     real-valued functions can be set by using 'epsilon(x)', where x
  113.     is the required precision (such as 1e-50).
  114.  
  115.     There is a command stack feature so that you can easily
  116.     re-execute previous commands and expressions from the terminal.
  117.     You can also edit the current command before it is completed.
  118.     Both of these features use emacs-like commands.
  119.  
  120.     Files can be read in by using the 'read filename' command.
  121.     These can contain both functions to be defined, and expressions
  122.     to be calculated.  Global variables which are numbers can be
  123.     saved to a file by using the 'write filename' command.
  124.